home *** CD-ROM | disk | FTP | other *** search
/ MacWorld's Best Websites Sponsored by SpryNet / Macworld's Best Websites Sponsored by SpryNet.iso / System 7.5 Update 2.0 / CD Extras / DOS Compatibility 1.0.7 / APPLE_PC / AUTOEXEC.APL < prev    next >
Encoding:
Text File  |  1996-02-29  |  4.0 KB  |  150 lines  |  [TEXT/dosa]

  1. @ECHO OFF
  2. REM  ******************************************
  3. REM  This is the autoexec.bat file for the 
  4. REM  Apple DOS Compatibility Card.
  5. REM  ******************************************
  6.  
  7. REM  ******************************************
  8. REM  Load DOSKEY to edit and re-use commands
  9. REM  DOSKEY is loaded into upper memory.
  10. REM  ******************************************
  11.  
  12. LH C:\DOS\DOSKEY
  13.  
  14. REM  ******************************************
  15. REM  Set the prompt
  16. REM  ******************************************
  17.  
  18. PROMPT $p$g
  19.  
  20. REM  ******************************************
  21. REM  Set the paths
  22. REM  ******************************************
  23.  
  24. SET PATH=C:\DOS;C:\WINDOWS
  25.  
  26. REM  ******************************************
  27. REM  Setup an environment variable TEMP which
  28. REM  points to the DOS directory
  29. REM  ******************************************
  30.  
  31. SET TEMP=C:\DOS
  32.  
  33. REM  ******************************************
  34. REM  Setup an environment variable TMP which
  35. REM  points to the TEMP directory
  36. REM  ******************************************
  37.  
  38. SET TMP=C:\TEMP
  39.  
  40. REM  ******************************************
  41. REM  Loads the Apple DOS/Windows support layer
  42. REM  into upper memory.
  43. REM  ******************************************
  44.  
  45. @ECHO.
  46. LH C:\Apple\ApplePC
  47. @ECHO.
  48.  
  49. REM  ******************************************
  50. REM  Loads MacShare into upper memory
  51. REM  to allow file sharing on the Macintosh
  52. REM  ******************************************
  53.  
  54. LH C:\Apple\MacShare
  55. @ECHO.
  56.  
  57. REM  ******************************************
  58. REM  Loads the CDROM software into upper
  59. REM  memory for CDROM support.
  60. REM
  61. REM  -- If you do not have a CD-ROM drive, --
  62. REM  -- you can REM out the next line to   --
  63. REM  -- save some memory space by not      --
  64. REM  -- loading MSCDEX and CDDRVR.         --
  65. REM  ******************************************
  66.  
  67. LH C:\DOS\MSCDEX /D:CDDRVR /L:E
  68. @ECHO.
  69.  
  70. REM  ******************************************
  71. REM  Loads DOSClip into upper memory
  72. REM  to allow cut and paste operations
  73. REM  in DOS.
  74. REM  ******************************************
  75.  
  76. LH C:\Apple\DOSClip
  77. @ECHO.
  78.  
  79. REM  ******************************************
  80. REM  The following lines set up the Sound
  81. REM  Blaster sound card.
  82. REM  ******************************************
  83.  
  84. SET SOUND=C:\SB16
  85. SET BLASTER=A220 I5 D1 H1 T6
  86. C:\SB16\MIXERSET /P /Q
  87.  
  88. REM  ******************************************
  89. REM  This section loads files depending
  90. REM  on the selection made in the start-
  91. REM  up screen.
  92. REM  ******************************************
  93.  
  94. goto %config%
  95.  
  96. REM  ******************************************
  97. REM  DOS is  the optimal selection for running
  98. REM  in the DOS environment.
  99. REM  Enable SmartDrive disk cacheing with R/W 
  100. REM  cacheing on drive C and read only for all
  101. REM  the others.
  102. REM  ******************************************
  103.  
  104. :DOS
  105. C:\DOS\SMARTDRV.EXE C+ /L
  106. goto end
  107.  
  108. REM  ******************************************
  109. REM  WINDOWS is  the optimal selection for running
  110. REM  in the WINDOWS environment. It will automatically
  111. REM  launch Windows.
  112. REM  Enable SmartDrive disk cacheing with R/W 
  113. REM  cacheing on drive C and read only for all
  114. REM  the others.
  115. REM  ******************************************
  116.  
  117. :WINDOWS
  118. C:\DOS\SMARTDRV.EXE C+ /L
  119. WIN
  120. goto end
  121.  
  122. REM  ******************************************
  123. REM  DOS_MAX_CONVENTIONAL_MEM is  
  124. REM  the optimal selection for obtaining maximum
  125. REM  conventional memory
  126. REM  ******************************************
  127.  
  128. :DOS_MAX_CONVENTIONAL_MEM
  129. goto end
  130.  
  131. REM  ******************************************
  132. REM  DOS_MAX_EXPANDED_MEM is  the
  133. REM  optimal selection obtaining maximum
  134. REM  expanded memory.
  135. REM  Enable SmartDrive disk cacheing with R/W 
  136. REM  cacheing on drive C and read only for all
  137. REM  the others.
  138. REM  ******************************************
  139.  
  140. :DOS_MAX_EXPANDED_MEM
  141. C:\DOS\SMARTDRV.EXE C+ /L
  142. goto end
  143.  
  144. :end
  145.  
  146. REM  ******************************************
  147. REM  END
  148. REM  ******************************************
  149.  
  150.